home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Python / marshal.c < prev    next >
C/C++ Source or Header  |  1999-04-25  |  16KB  |  778 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Write Python objects to files and read them back.
  33.    This is intended for writing and reading compiled Python code only;
  34.    a true persistent storage facility would be much harder, since
  35.    it would have to take circular links and sharing into account. */
  36.  
  37. #include "Python.h"
  38. #include "longintrepr.h"
  39. #include "compile.h"
  40. #include "marshal.h"
  41.  
  42. #define TYPE_NULL    '0'
  43. #define TYPE_NONE    'N'
  44. #define TYPE_ELLIPSIS   '.'
  45. #define TYPE_INT    'i'
  46. #define TYPE_INT64    'I'
  47. #define TYPE_FLOAT    'f'
  48. #define TYPE_COMPLEX    'x'
  49. #define TYPE_LONG    'l'
  50. #define TYPE_STRING    's'
  51. #define TYPE_TUPLE    '('
  52. #define TYPE_LIST    '['
  53. #define TYPE_DICT    '{'
  54. #define TYPE_CODE    'c'
  55. #define TYPE_UNKNOWN    '?'
  56.  
  57. typedef struct {
  58.     FILE *fp;
  59.     int error;
  60.     /* If fp == NULL, the following are valid: */
  61.     PyObject *str;
  62.     char *ptr;
  63.     char *end;
  64. } WFILE;
  65.  
  66. #include "protos/marshal.h"
  67.  
  68. #define w_byte(c, p) if (((p)->fp)) putc((c), (p)->fp); \
  69.               else if ((p)->ptr != (p)->end) *(p)->ptr++ = (c); \
  70.                else w_more(c, p)
  71.  
  72. static void
  73. w_more(c, p)
  74.     char c;
  75.     WFILE *p;
  76. {
  77.     int size, newsize;
  78.     if (p->str == NULL)
  79.         return; /* An error already occurred */
  80.     size = PyString_Size(p->str);
  81.     newsize = size + 1024;
  82.     if (_PyString_Resize(&p->str, newsize) != 0) {
  83.         p->ptr = p->end = NULL;
  84.     }
  85.     else {
  86.         p->ptr = PyString_AS_STRING((PyStringObject *)p->str) + size;
  87.         p->end =
  88.             PyString_AS_STRING((PyStringObject *)p->str) + newsize;
  89.         *p->ptr++ = c;
  90.     }
  91. }
  92.  
  93. static void
  94. w_string(s, n, p)
  95.     char *s;
  96.     int n;
  97.     WFILE *p;
  98. {
  99.     if (p->fp != NULL) {
  100.         fwrite(s, 1, n, p->fp);
  101.     }
  102.     else {
  103.         while (--n >= 0) {
  104.             w_byte(*s, p);
  105.             s++;
  106.         }
  107.     }
  108. }
  109.  
  110. static void
  111. w_short(x, p)
  112.     int x;
  113.     WFILE *p;
  114. {
  115.     w_byte( x      & 0xff, p);
  116.     w_byte((x>> 8) & 0xff, p);
  117. }
  118.  
  119. static void
  120. w_long(x, p)
  121.     long x;
  122.     WFILE *p;
  123. {
  124.     w_byte((int)( x      & 0xff), p);
  125.     w_byte((int)((x>> 8) & 0xff), p);
  126.     w_byte((int)((x>>16) & 0xff), p);
  127.     w_byte((int)((x>>24) & 0xff), p);
  128. }
  129.  
  130. #if SIZEOF_LONG > 4
  131. static void
  132. w_long64(x, p)
  133.     long x;
  134.     WFILE *p;
  135. {
  136.     w_long(x, p);
  137.     w_long(x>>32, p);
  138. }
  139. #endif
  140.  
  141. static void
  142. w_object(v, p)
  143.     PyObject *v;
  144.     WFILE *p;
  145. {
  146.     int i, n;
  147.     PyBufferProcs *pb;
  148.     
  149.     if (v == NULL) {
  150.         w_byte(TYPE_NULL, p);
  151.     }
  152.     else if (v == Py_None) {
  153.         w_byte(TYPE_NONE, p);
  154.     }
  155.     else if (v == Py_Ellipsis) {
  156.             w_byte(TYPE_ELLIPSIS, p);
  157.     }
  158.     else if (PyInt_Check(v)) {
  159.         long x = PyInt_AS_LONG((PyIntObject *)v);
  160. #if SIZEOF_LONG > 4
  161.         long y = x>>31;
  162.         if (y && y != -1) {
  163.             w_byte(TYPE_INT64, p);
  164.             w_long64(x, p);
  165.         }
  166.         else
  167. #endif
  168.             {
  169.             w_byte(TYPE_INT, p);
  170.             w_long(x, p);
  171.         }
  172.     }
  173.     else if (PyLong_Check(v)) {
  174.         PyLongObject *ob = (PyLongObject *)v;
  175.         w_byte(TYPE_LONG, p);
  176.         n = ob->ob_size;
  177.         w_long((long)n, p);
  178.         if (n < 0)
  179.             n = -n;
  180.         for (i = 0; i < n; i++)
  181.             w_short(ob->ob_digit[i], p);
  182.     }
  183.     else if (PyFloat_Check(v)) {
  184.         extern void PyFloat_AsString
  185.             Py_PROTO((char *, PyFloatObject *));
  186.         char buf[256]; /* Plenty to format any double */
  187.         PyFloat_AsString(buf, (PyFloatObject *)v);
  188.         n = strlen(buf);
  189.         w_byte(TYPE_FLOAT, p);
  190.         w_byte(n, p);
  191.         w_string(buf, n, p);
  192.     }
  193. #ifndef WITHOUT_COMPLEX
  194.     else if (PyComplex_Check(v)) {
  195.         extern void PyFloat_AsString
  196.             Py_PROTO((char *, PyFloatObject *));
  197.         char buf[256]; /* Plenty to format any double */
  198.         PyFloatObject *temp;
  199.         w_byte(TYPE_COMPLEX, p);
  200.         temp = (PyFloatObject*)PyFloat_FromDouble(
  201.             PyComplex_RealAsDouble(v));
  202.         PyFloat_AsString(buf, temp);
  203.         Py_DECREF(temp);
  204.         n = strlen(buf);
  205.         w_byte(n, p);
  206.         w_string(buf, n, p);
  207.         temp = (PyFloatObject*)PyFloat_FromDouble(
  208.             PyComplex_ImagAsDouble(v));
  209.         PyFloat_AsString(buf, temp);
  210.         Py_DECREF(temp);
  211.         n = strlen(buf);
  212.         w_byte(n, p);
  213.         w_string(buf, n, p);
  214.     }
  215. #endif
  216.     else if (PyString_Check(v)) {
  217.         w_byte(TYPE_STRING, p);
  218.         n = PyString_Size(v);
  219.         w_long((long)n, p);
  220.         w_string(PyString_AsString(v), n, p);
  221.     }
  222.     else if (PyTuple_Check(v)) {
  223.         w_byte(TYPE_TUPLE, p);
  224.         n = PyTuple_Size(v);
  225.         w_long((long)n, p);
  226.         for (i = 0; i < n; i++) {
  227.             w_object(PyTuple_GET_ITEM(v, i), p);
  228.         }
  229.     }
  230.     else if (PyList_Check(v)) {
  231.         w_byte(TYPE_LIST, p);
  232.         n = PyList_Size(v);
  233.         w_long((long)n, p);
  234.         for (i = 0; i < n; i++) {
  235.             w_object(PyList_GetItem(v, i), p);
  236.         }
  237.     }
  238.     else if (PyDict_Check(v)) {
  239.         int pos;
  240.         PyObject *key, *value;
  241.         w_byte(TYPE_DICT, p);
  242.         /* This one is NULL object terminated! */
  243.         pos = 0;
  244.         while (PyDict_Next(v, &pos, &key, &value)) {
  245.             w_object(key, p);
  246.             w_object(value, p);
  247.         }
  248.         w_object((PyObject *)NULL, p);
  249.     }
  250.     else if (PyCode_Check(v)) {
  251.         PyCodeObject *co = (PyCodeObject *)v;
  252.         w_byte(TYPE_CODE, p);
  253.         w_short(co->co_argcount, p);
  254.         w_short(co->co_nlocals, p);
  255.         w_short(co->co_stacksize, p);
  256.         w_short(co->co_flags, p);
  257.         w_object(co->co_code, p);
  258.         w_object(co->co_consts, p);
  259.         w_object(co->co_names, p);
  260.         w_object(co->co_varnames, p);
  261.         w_object(co->co_filename, p);
  262.         w_object(co->co_name, p);
  263.         w_short(co->co_firstlineno, p);
  264.         w_object(co->co_lnotab, p);
  265.     }
  266.     else if ((pb = v->ob_type->tp_as_buffer) != NULL &&
  267.          pb->bf_getsegcount != NULL &&
  268.          pb->bf_getreadbuffer != NULL &&
  269.          (*pb->bf_getsegcount)(v, NULL) == 1)
  270.     {
  271.         /* Write unknown buffer-style objects as a string */
  272.         char *s;
  273.         w_byte(TYPE_STRING, p);
  274.         n = (*pb->bf_getreadbuffer)(v, 0, (void **)&s);
  275.         w_long((long)n, p);
  276.         w_string(s, n, p);
  277.     }
  278.     else {
  279.         w_byte(TYPE_UNKNOWN, p);
  280.         p->error = 1;
  281.     }
  282. }
  283.  
  284. void
  285. PyMarshal_WriteLongToFile(x, fp)
  286.     long x;
  287.     FILE *fp;
  288. {
  289.     WFILE wf;
  290.     wf.fp = fp;
  291.     wf.error = 0;
  292.     w_long(x, &wf);
  293. }
  294.  
  295. void
  296. PyMarshal_WriteObjectToFile(x, fp)
  297.     PyObject *x;
  298.     FILE *fp;
  299. {
  300.     WFILE wf;
  301.     wf.fp = fp;
  302.     wf.error = 0;
  303.     w_object(x, &wf);
  304. }
  305.  
  306. typedef WFILE RFILE; /* Same struct with different invariants */
  307.  
  308. #include "protos/marshal2.h"
  309.  
  310. #define rs_byte(p) (((p)->ptr != (p)->end) ? (unsigned char)*(p)->ptr++ : EOF)
  311.  
  312. #define r_byte(p) ((p)->fp ? getc((p)->fp) : rs_byte(p))
  313.  
  314. static int
  315. r_string(s, n, p)
  316.     char *s;
  317.     int n;
  318.     RFILE *p;
  319. {
  320.     if (p->fp != NULL)
  321.         return fread(s, 1, n, p->fp);
  322.     if (p->end - p->ptr < n)
  323.         n = p->end - p->ptr;
  324.     memcpy(s, p->ptr, n);
  325.     p->ptr += n;
  326.     return n;
  327. }
  328.  
  329. static int
  330. r_short(p)
  331.     RFILE *p;
  332. {
  333.     register short x;
  334.     x = r_byte(p);
  335.     x |= r_byte(p) << 8;
  336.     /* XXX If your short is > 16 bits, add sign-extension here!!! */
  337.     return x;
  338. }
  339.  
  340. static long
  341. r_long(p)
  342.     RFILE *p;
  343. {
  344.     register long x;
  345.     register FILE *fp = p->fp;
  346.     if (fp) {
  347.         x = getc(fp);
  348.         x |= (long)getc(fp) << 8;
  349.         x |= (long)getc(fp) << 16;
  350.         x |= (long)getc(fp) << 24;
  351.     }
  352.     else {
  353.         x = rs_byte(p);
  354.         x |= (long)rs_byte(p) << 8;
  355.         x |= (long)rs_byte(p) << 16;
  356.         x |= (long)rs_byte(p) << 24;
  357.     }
  358. #if SIZEOF_LONG > 4
  359.     /* Sign extension for 64-bit machines */
  360.     x <<= (8*sizeof(long) - 32);
  361.     x >>= (8*sizeof(long) - 32);
  362. #endif
  363.     return x;
  364. }
  365.  
  366. static long
  367. r_long64(p)
  368.     RFILE *p;
  369. {
  370.     register long x;
  371.     x = r_long(p);
  372. #if SIZEOF_LONG > 4
  373.     x = (x & 0xFFFFFFFF) | (r_long(p) << 32);
  374. #else
  375.     if (r_long(p) != 0) {
  376.         PyObject *f = PySys_GetObject("stderr");
  377.         if (f != NULL)
  378.             (void) PyFile_WriteString(
  379.                 "Warning: un-marshal 64-bit int in 32-bit mode\n",
  380.                 f);
  381.     }
  382. #endif
  383.     return x;
  384. }
  385.  
  386. static PyObject *
  387. r_object(p)
  388.     RFILE *p;
  389. {
  390.     PyObject *v, *v2;
  391.     long i, n;
  392.     int type = r_byte(p);
  393.     
  394.     switch (type) {
  395.     
  396.     case EOF:
  397.         PyErr_SetString(PyExc_EOFError,
  398.                 "EOF read where object expected");
  399.         return NULL;
  400.     
  401.     case TYPE_NULL:
  402.         return NULL;
  403.     
  404.     case TYPE_NONE:
  405.         Py_INCREF(Py_None);
  406.         return Py_None;
  407.     
  408.     case TYPE_ELLIPSIS:
  409.         Py_INCREF(Py_Ellipsis);
  410.         return Py_Ellipsis;
  411.     
  412.     case TYPE_INT:
  413.         return PyInt_FromLong(r_long(p));
  414.     
  415.     case TYPE_INT64:
  416.         return PyInt_FromLong(r_long64(p));
  417.     
  418.     case TYPE_LONG:
  419.         {
  420.             int size;
  421.             PyLongObject *ob;
  422.             n = r_long(p);
  423.             size = n<0 ? -n : n;
  424.             ob = _PyLong_New(size);
  425.             if (ob == NULL)
  426.                 return NULL;
  427.             ob->ob_size = n;
  428.             for (i = 0; i < size; i++)
  429.                 ob->ob_digit[i] = r_short(p);
  430.             return (PyObject *)ob;
  431.         }
  432.     
  433.     case TYPE_FLOAT:
  434.         {
  435.             extern double atof Py_PROTO((const char *));
  436.             char buf[256];
  437.             double dx;
  438.             n = r_byte(p);
  439.             if (r_string(buf, (int)n, p) != n) {
  440.                 PyErr_SetString(PyExc_EOFError,
  441.                     "EOF read where object expected");
  442.                 return NULL;
  443.             }
  444.             buf[n] = '\0';
  445.             PyFPE_START_PROTECT("atof", return 0)
  446.             dx = atof(buf);
  447.             PyFPE_END_PROTECT(dx)
  448.             return PyFloat_FromDouble(dx);
  449.         }
  450.     
  451. #ifndef WITHOUT_COMPLEX
  452.     case TYPE_COMPLEX:
  453.         {
  454.             extern double atof Py_PROTO((const char *));
  455.             char buf[256];
  456.             Py_complex c;
  457.             n = r_byte(p);
  458.             if (r_string(buf, (int)n, p) != n) {
  459.                 PyErr_SetString(PyExc_EOFError,
  460.                     "EOF read where object expected");
  461.                 return NULL;
  462.             }
  463.             buf[n] = '\0';
  464.             PyFPE_START_PROTECT("atof", return 0)
  465.             c.real = atof(buf);
  466.             PyFPE_END_PROTECT(c)
  467.             n = r_byte(p);
  468.             if (r_string(buf, (int)n, p) != n) {
  469.                 PyErr_SetString(PyExc_EOFError,
  470.                     "EOF read where object expected");
  471.                 return NULL;
  472.             }
  473.             buf[n] = '\0';
  474.             PyFPE_START_PROTECT("atof", return 0)
  475.             c.imag = atof(buf);
  476.             PyFPE_END_PROTECT(c)
  477.             return PyComplex_FromCComplex(c);
  478.         }
  479. #endif
  480.     
  481.     case TYPE_STRING:
  482.         n = r_long(p);
  483.         if (n < 0) {
  484.             PyErr_SetString(PyExc_ValueError, "bad marshal data");
  485.             return NULL;
  486.         }
  487.         v = PyString_FromStringAndSize((char *)NULL, n);
  488.         if (v != NULL) {
  489.             if (r_string(PyString_AsString(v), (int)n, p) != n) {
  490.                 Py_DECREF(v);
  491.                 v = NULL;
  492.                 PyErr_SetString(PyExc_EOFError,
  493.                     "EOF read where object expected");
  494.             }
  495.         }
  496.         return v;
  497.     
  498.     case TYPE_TUPLE:
  499.         n = r_long(p);
  500.         if (n < 0) {
  501.             PyErr_SetString(PyExc_ValueError, "bad marshal data");
  502.             return NULL;
  503.         }
  504.         v = PyTuple_New((int)n);
  505.         if (v == NULL)
  506.             return v;
  507.         for (i = 0; i < n; i++) {
  508.             v2 = r_object(p);
  509.             if ( v2 == NULL ) {
  510.                 Py_DECREF(v);
  511.                 v = NULL;
  512.                 break;
  513.             }
  514.             PyTuple_SET_ITEM(v, (int)i, v2);
  515.         }
  516.         return v;
  517.     
  518.     case TYPE_LIST:
  519.         n = r_long(p);
  520.         if (n < 0) {
  521.             PyErr_SetString(PyExc_ValueError, "bad marshal data");
  522.             return NULL;
  523.         }
  524.         v = PyList_New((int)n);
  525.         if (v == NULL)
  526.             return v;
  527.         for (i = 0; i < n; i++) {
  528.             v2 = r_object(p);
  529.             if ( v2 == NULL ) {
  530.                 Py_DECREF(v);
  531.                 v = NULL;
  532.                 break;
  533.             }
  534.             PyList_SetItem(v, (int)i, v2);
  535.         }
  536.         return v;
  537.     
  538.     case TYPE_DICT:
  539.         v = PyDict_New();
  540.         if (v == NULL)
  541.             return NULL;
  542.         for (;;) {
  543.             PyObject *key, *val;
  544.             key = r_object(p);
  545.             if (key == NULL)
  546.                 break; /* XXX Assume TYPE_NULL, not an error */
  547.             val = r_object(p);
  548.             if (val != NULL)
  549.                 PyDict_SetItem(v, key, val);
  550.             Py_DECREF(key);
  551.             Py_XDECREF(val);
  552.         }
  553.         return v;
  554.     
  555.     case TYPE_CODE:
  556.         {
  557.             int argcount = r_short(p);
  558.             int nlocals = r_short(p);
  559.             int stacksize = r_short(p);
  560.             int flags = r_short(p);
  561.             PyObject *code = NULL;
  562.             PyObject *consts = NULL;
  563.             PyObject *names = NULL;
  564.             PyObject *varnames = NULL;
  565.             PyObject *filename = NULL;
  566.             PyObject *name = NULL;
  567.             int firstlineno = 0;
  568.             PyObject *lnotab = NULL;
  569.             
  570.             code = r_object(p);
  571.             if (code) consts = r_object(p);
  572.             if (consts) names = r_object(p);
  573.             if (names) varnames = r_object(p);
  574.             if (varnames) filename = r_object(p);
  575.             if (filename) name = r_object(p);
  576.             if (name) {
  577.                 firstlineno = r_short(p);
  578.                 lnotab = r_object(p);
  579.             }
  580.             
  581.             if (!PyErr_Occurred()) {
  582.                 v = (PyObject *) PyCode_New(
  583.                     argcount, nlocals, stacksize, flags, 
  584.                     code, consts, names, varnames,
  585.                     filename, name, firstlineno, lnotab);
  586.             }
  587.             else
  588.                 v = NULL;
  589.             Py_XDECREF(code);
  590.             Py_XDECREF(consts);
  591.             Py_XDECREF(names);
  592.             Py_XDECREF(varnames);
  593.             Py_XDECREF(filename);
  594.             Py_XDECREF(name);
  595.             Py_XDECREF(lnotab);
  596.  
  597.         }
  598.         return v;
  599.     
  600.     default:
  601.         /* Bogus data got written, which isn't ideal.
  602.            This will let you keep working and recover. */
  603.         PyErr_SetString(PyExc_ValueError, "bad marshal data");
  604.         return NULL;
  605.     
  606.     }
  607. }
  608.  
  609. long
  610. PyMarshal_ReadLongFromFile(fp)
  611.     FILE *fp;
  612. {
  613.     RFILE rf;
  614.     rf.fp = fp;
  615.     return r_long(&rf);
  616. }
  617.  
  618. PyObject *
  619. PyMarshal_ReadObjectFromFile(fp)
  620.     FILE *fp;
  621. {
  622.     RFILE rf;
  623.     if (PyErr_Occurred()) {
  624.         fprintf(stderr, "XXX rd_object called with exception set\n");
  625.         return NULL;
  626.     }
  627.     rf.fp = fp;
  628.     return r_object(&rf);
  629. }
  630.  
  631. PyObject *
  632. PyMarshal_ReadObjectFromString(str, len)
  633.     char *str;
  634.     int len;
  635. {
  636.     RFILE rf;
  637.     if (PyErr_Occurred()) {
  638.         fprintf(stderr, "XXX rds_object called with exception set\n");
  639.         return NULL;
  640.     }
  641.     rf.fp = NULL;
  642.     rf.str = NULL;
  643.     rf.ptr = str;
  644.     rf.end = str + len;
  645.     return r_object(&rf);
  646. }
  647.  
  648. PyObject *
  649. PyMarshal_WriteObjectToString(x) /* wrs_object() */
  650.     PyObject *x;
  651. {
  652.     WFILE wf;
  653.     wf.fp = NULL;
  654.     wf.str = PyString_FromStringAndSize((char *)NULL, 50);
  655.     if (wf.str == NULL)
  656.         return NULL;
  657.     wf.ptr = PyString_AS_STRING((PyStringObject *)wf.str);
  658.     wf.end = wf.ptr + PyString_Size(wf.str);
  659.     wf.error = 0;
  660.     w_object(x, &wf);
  661.     if (wf.str != NULL)
  662.         _PyString_Resize(&wf.str,
  663.             (int) (wf.ptr -
  664.                PyString_AS_STRING((PyStringObject *)wf.str)));
  665.     if (wf.error) {
  666.         Py_XDECREF(wf.str);
  667.         PyErr_SetString(PyExc_ValueError, "unmarshallable object");
  668.         return NULL;
  669.     }
  670.     return wf.str;
  671. }
  672.  
  673. /* And an interface for Python programs... */
  674.  
  675. static PyObject *
  676. marshal_dump(self, args)
  677.     PyObject *self;
  678.     PyObject *args;
  679. {
  680.     WFILE wf;
  681.     PyObject *x;
  682.     PyObject *f;
  683.     if (!PyArg_Parse(args, "(OO)", &x, &f))
  684.         return NULL;
  685.     if (!PyFile_Check(f)) {
  686.         PyErr_SetString(PyExc_TypeError,
  687.                 "marshal.dump() 2nd arg must be file");
  688.         return NULL;
  689.     }
  690.     wf.fp = PyFile_AsFile(f);
  691.     wf.str = NULL;
  692.     wf.ptr = wf.end = NULL;
  693.     wf.error = 0;
  694.     w_object(x, &wf);
  695.     if (wf.error) {
  696.         PyErr_SetString(PyExc_ValueError, "unmarshallable object");
  697.         return NULL;
  698.     }
  699.     Py_INCREF(Py_None);
  700.     return Py_None;
  701. }
  702.  
  703. static PyObject *
  704. marshal_load(self, args)
  705.     PyObject *self;
  706.     PyObject *args;
  707. {
  708.     RFILE rf;
  709.     PyObject *f;
  710.     PyObject *v;
  711.     if (!PyArg_Parse(args, "O", &f))
  712.         return NULL;
  713.     if (!PyFile_Check(f)) {
  714.         PyErr_SetString(PyExc_TypeError,
  715.                 "marshal.load() arg must be file");
  716.         return NULL;
  717.     }
  718.     rf.fp = PyFile_AsFile(f);
  719.     rf.str = NULL;
  720.     rf.ptr = rf.end = NULL;
  721.     PyErr_Clear();
  722.     v = r_object(&rf);
  723.     if (PyErr_Occurred()) {
  724.         Py_XDECREF(v);
  725.         v = NULL;
  726.     }
  727.     return v;
  728. }
  729.  
  730. static PyObject *
  731. marshal_dumps(self, args)
  732.     PyObject *self;
  733.     PyObject *args;
  734. {
  735.     PyObject *x;
  736.     if (!PyArg_Parse(args, "O", &x))
  737.         return NULL;
  738.     return PyMarshal_WriteObjectToString(x);
  739. }
  740.  
  741. static PyObject *
  742. marshal_loads(self, args)
  743.     PyObject *self;
  744.     PyObject *args;
  745. {
  746.     RFILE rf;
  747.     PyObject *v;
  748.     char *s;
  749.     int n;
  750.     if (!PyArg_Parse(args, "s#", &s, &n))
  751.         return NULL;
  752.     rf.fp = NULL;
  753.     rf.str = args;
  754.     rf.ptr = s;
  755.     rf.end = s + n;
  756.     PyErr_Clear();
  757.     v = r_object(&rf);
  758.     if (PyErr_Occurred()) {
  759.         Py_XDECREF(v);
  760.         v = NULL;
  761.     }
  762.     return v;
  763. }
  764.  
  765. static PyMethodDef marshal_methods[] = {
  766.     {"dump",    marshal_dump},
  767.     {"load",    marshal_load},
  768.     {"dumps",    marshal_dumps},
  769.     {"loads",    marshal_loads},
  770.     {NULL,        NULL}        /* sentinel */
  771. };
  772.  
  773. void
  774. PyMarshal_Init()
  775. {
  776.     (void) Py_InitModule("marshal", marshal_methods);
  777. }
  778.